home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / Runimage / Borland Shared / DEBUGGER / README.TXT < prev   
Encoding:
Text File  |  1999-08-11  |  3.0 KB  |  85 lines

  1. ===============================================
  2. DELPHI/C++BUILDER REMOTE DEBUGGING NOTES
  3. ===============================================
  4.  
  5. These notes explain how to use remote debugging 
  6. with C++Builder or Delphi. Run this setup program 
  7. on all systems where remote programs will be 
  8. running. The Delphi or C++Builder IDE is not 
  9. required on remote machines.
  10.  
  11. On Windows NT, the Remote Debugging service can 
  12. be run either as a program or as a service. On 
  13. Windows 95 or Windows 98, the Remote Debugging 
  14. service can only be run as a program. To run as 
  15. a program, run "borrdg50.exe -listen" from either 
  16. a DOS box or a shortcut. If installed as a service, 
  17. communication between the debugger and the remote 
  18. application is handled automatically.
  19.  
  20. To start a remote debugging session, use the IDE 
  21. on your local machine and set the following options:
  22.  
  23. For Delphi only:
  24.  
  25.   Project|Options|Linker
  26.   Include remote debug symbols box must be checked.
  27.  
  28.   Project|Options|Directories/Conditionals
  29.   Output directory can be set to a shared directory
  30.   on the remote machine. If you do not set this up, 
  31.   you need to copy the .exe and .rsm files onto the 
  32.   remote machine.
  33.   
  34. For C++Builder only:
  35.  
  36.   Project|Options|Directories/Conditionals
  37.   Final output directory can be set to a shared 
  38.   directory on the remote machine. If you do not 
  39.   set this up, you need to copy the .exe and .tds 
  40.   files onto the remote machine.
  41.   
  42. For either product:
  43.  
  44.   Run|Parameters|Remote
  45.   Set the Remote Path to the remote directory and 
  46.   .exe name. Example: d:\temp\proj1.exe, where 
  47.   d:\temp is a directory on the remote machine. 
  48.   The drive and directory do not have to match the 
  49.   project directory on the local machine. 
  50.  
  51.   Run|Parameters|Remote
  52.   Set the Remote Host to the DNS machine name or 
  53.   to the IP address of the machine on which you 
  54.   installed the remote debugger server. If you 
  55.   check Debug project on remote machine and click 
  56.   OK, all debugger commands start a remote 
  57.   debugging session for the current project. If 
  58.   you do not check this option, you must click 
  59.   the Load button on this dialog to start a remote 
  60.   debugging session. This also lets you debug an
  61.   .exe that is already set up on the remote 
  62.   machine without having to open the project 
  63.   associated with it.
  64.  
  65. IMPORTANT:
  66.  
  67. The default installation location for the remote 
  68. debugging library file BORDBK50.DLL is:
  69. <drive>\<Windows\system32>\Common Files\
  70.   Borland Shared\Debugger
  71.  
  72. The file is installed to this location even if you
  73. choose a different location for the other debugger
  74. files during the installation process. (All other 
  75. remote debugger files are installed to a 'bin' 
  76. directory under the directory you choose.)
  77.  
  78. The only case in which BORDBK50.DLL is installed 
  79. elsewhere is when the file is already installed 
  80. and registered to a different location.
  81.  
  82. ===============================================
  83. Copyright (c) 1999 Inprise Corporation. 
  84. All rights reserved.
  85.